home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- global markerposition, saverphotonum
- set saverphotonum to 0
- puppetPalette("PLphoto")
- updateStage()
- set markerposition to mouseH() & "," & mouseV()
- set the timeoutScript to EMPTY
- set the keyDownScript to "exitMovie"
- set the mouseDownScript to "exitMovie"
- end
-
- on changephoto
- global saverphotonum
- set saverphotonum to saverphotonum + 1
- if saverphotonum = 89 then
- set saverphotonum to 1
- end if
- put saverphotonum
- puppetSprite(1, 1)
- set the type of sprite 1 to 1
- set the ink of sprite 1 to 0
- set the castNum of sprite 1 to the number of member "cineLogo"
- set the locH of sprite 1 to random(600) + 30
- set the locV of sprite 1 to random(450) + 30
- puppetSprite(2, 1)
- set the type of sprite 2 to 1
- set the ink of sprite 2 to 0
- set the castNum of sprite 2 to the number of member string(saverphotonum)
- set the locH of sprite 2 to random(420) + 100
- set the locV of sprite 2 to random(180) + 150
- puppetTransition(23)
- updateStage()
- unLoad()
- end
-
- on idle
- global markerposition
- set currentmarkerposition to mouseH() & "," & mouseV()
- if currentmarkerposition <> markerposition then
- exitmovie()
- end if
- end
-
- on exitmovie
- global fileName
- set the keyDownScript to EMPTY
- set the mouseDownScript to EMPTY
- set the timeoutScript to "doTimeOut"
- set the locH of sprite 1 to -500
- set the locV of sprite 1 to -500
- set the locH of sprite 2 to -500
- set the locV of sprite 2 to -500
- updateStage()
- puppetPalette("PLsystem")
- updateStage()
- go(1, fileName)
- end
-